home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-05-03 | 673 b | 20 lines | [TEXT/ToyS] |
- set zl to (list zones)
- repeat with z in zl
- display dialog "The following nodes are in zone " & z
- set oldDelims to AppleScript's text item delimiters
- set AppleScript's text item delimiters to ":"
- set m to (list nodes type "Macintosh≈" zone z)
- repeat with n in m
- set machName to text item 1 of n
- display dialog "The following applications are running on machine " & machName
- try
- set ll to (list links on machName in zone z)
- repeat with l in ll
- display dialog l
- end repeat
- on error num
- display dialog "We are not allowed to connect to machine " & machName & "."
- end try
- end repeat
- set AppleScript's text item delimiters to oldDelims
- end repeat